Server World
Other OS Configs
CentOS 7
CentOS 6
Fedora 27
Fedora 26
Debian 9
Debian 8
Ubuntu 17.04
Ubuntu 16.04 LTS
SUSE Linux Enterprise 12
SUSE Linux Enterprise 11
Windows Server 2016
Windows Server 2012 R2
Other Tips
CentOS 5
Fedora 25
Fedora 24
Fedora 23
Fedora 22
Fedora 21
Fedora 20
Fedora 19
Fedora 18
Fedora 17
Fedora 16
Fedora 15
Fedora 14
Debian 7
Debian 6
Ubuntu 15.04
Ubuntu 14.04 LTS
Ubuntu 13.04
Ubuntu 12.04 LTS
Ubuntu 11.04
Ubuntu 10.04 LTS
Fedora 13
Fedora 12
Fedora 11
Fedora 10
Scientific Linux 6
Introductions
Histories
Commands Help
Links/Contact
7912 / 62642648
Debian 9 Stretch
Get Debian 9
Install Debian
Initial Settings
(1) Add New Users
(2) Set Command Alias
(3) Network Settings
(4) Services
(5) Update System
(6) Install Vim
(7) Configure Sudo
NTP Server
(1) Configure NTP Server(NTPd)
(2) Configure NTP Server(Chrony)
(3) Configure NTP Client
SSH Server
(1) Password Authentication
(2) SSH File Transfer(Debian)
(3) SSH File Transfer(Windows)
(4) SSH Key-Pair Authentication
(5) SFTP only + Chroot
(6) Use SSHPass
(7) Use SSH-Agent
(8) Use Parallel SSH
DNS / DHCP Server
DNS/DHCP Server (Dnsmasq)
(1) Install Dnsmasq
(2) Configure DHCP Server
DNS Server (BIND)
(1) Install BIND
(2) Set Zone Files
(3) Start BIND
(4) Set CNAME Record
(5) Slave DNS Server
DHCP Server
(1) Configure DHCP Server
(2) Configure DHCP Client
Storage Server
NFS
(1) Configure NFS Server
(2) NFS Client(Debian)
(3) NFS Client(Win Server)
(4) NFS Client(Win Client)
iSCSI
(1) Conf iSCSI Taregt(targetcli)
(2) Conf iSCSI Taregt(tgt)
(3) iSCSI Initiator(Debian)
(4) iSCSI Initiator(Windows)
GlusterFS
(1) Install GlusterFS
(2) Distributed Setting
(3) Replication Setting
(4) Striping Setting
(5) Distributed + Replication
(6) Striping + Replication
(7) Clients' Settings
Virtualization
KVM
(1) Install KVM
(2) Create Virtual Machine#1
(3) Create Virtual Machine#2
(4) Basic Operations
(5) Management tools
(6) SPICE Server
(7) SPICE Client
(8) Nested KVM
Docker
(1) Install Docker
(2) Add Images
(3) Access to Services on Container
(4) Use Dockerfile
(5) Use Persistent Storage
(6) Use Docker-Registry
(7) Docker Swarm
Cloud Compute
OpenStack Newton
( 1 ) Newton Overview
( 2 ) Pre-Requirements
( 3 ) Configure Keystone#1
( 4 ) Configure Keystone#2
( 5 ) Configure Glance
( 6 ) Configure Nova#1
( 7 ) Configure Nova#2
( 8 ) Configure Nova#3
( 9 ) Configure Neutron#1
(10) Configure Neutron#2
(11) Add VM Images
(12) Configure Networking
(13) Run Instances
(14) Configure Horizon
(15) Add Compute Nodes
(16) Configure Neutron#3
(17) Configure Neutron#4
(18) Configure Neutron#5
(19) Neutron Network (VXLAN)
Directory Server
OpenLDAP
(1) Configure LDAP Server
(2) Add User Accounts
(3) Configure LDAP Client
(4) LDAP over TLS
(5) LDAP Replication
(6) Multi-Master Replication
NIS
(1) Configure NIS Server
(2) Configure NIS Client
(3) Configure NIS Slave
WEB Server
Apache2
( 1 ) Install Apache2
( 2 ) Use Perl Scripts
( 3 ) Use PHP Scripts
( 4 ) Use Ruby Scripts
( 5 ) Use Python Scripts
( 6 ) Enable Userdir
( 7 ) Virtual Hostings
( 8 ) SSL Settings
( 9 ) Basic Authentication
(10) Basic Auth + PAM
(11) Kerberos Authentication
(12) WebDAV Settings
(13) PHP + PHP-FPM
Database
MariaDB
(1) Install MariaDB
(2) Install phpMyAdmin
(3) MariaDB Replication
FTP Server
(1) Install Vsftpd
(2) Install ProFTPD
(3) Install Pure-FTPd
(4) FTP Client (Debian)
(5) FTP Client (Windows)
(6) Vsftpd over TLS/SSL
(7) ProFTPD over TLS/SSL
(8) Pure-FTPd over TLS/SSL
MAIL Server
( 1 ) Install Postfix
( 2 ) Install Dovecot
( 3 ) Add Mail Accounts#1
( 4 ) Clients' Setting
( 5 ) SSL Settings
( 6 ) Virtual Domains
( 7 ) Add Mail Accounts#2
( 8 ) Postfix+Clamav+ClamSMTP
( 9 ) Log Report : pflogsumm
(10) Log Report : MailGraph
Samba Server
(1) Fully accessed Shared Directory
(2) Restricted Shared Directory
(3) Samba Winbind
(4) Samba AD DC : Configure DC
(5) Samba AD DC : User Manage
(6) Samba AD DC : Join Domain
Proxy Server
(1) Install Squid
(2) Configure Proxy Clients
(3) Set Basic Authentication
(4) Configure as a Reverse Proxy
(5) Squid + SquidClamav
(6) Squid + SquidGuard
(7) Log Report : LightSquid
(8) Log Report : SARG
Desktop Env
(9) Connect to Windows with RDP
(8) Configure Xrdp Server
(7) VNC Client : noVNC
(6) Configure VNC Server
(5) Xfce Desktop Environment
(4) MATE Desktop Environment
(3) Cinnamon Desktop Environment
(2) KDE Desktop Environment
(1) GNOME Desktop Environment
Others
Create SSL Certificates
Set System Timezone
Set KeyboardMap
Set System Locale
Set Hostname
Join in Active Directory
Clamav AntiVirus
Sponsored Link
FTP Server : Pure-FTPd
2017/06/26
Install Pure-FTPd to configure FTP server to transfer files.
[1]
Install and Configure Pure-FTPd.
root@www:~#
apt
-y install pure-ftpd
# run as a daemon
root@www:~#
echo
"yes" > /etc/pure-ftpd/conf/Daemonize
# prohibit Anonymous
root@www:~#
echo
"yes" > /etc/pure-ftpd/conf/NoAnonymous
# enable chroot
root@www:~#
echo
"yes" > /etc/pure-ftpd/conf/ChrootEveryone
# listen only IPV4 if need
root@www:~#
echo
"yes" > /etc/pure-ftpd/conf/IPV4Only
root@www:~#
systemctl
restart pure-ftpd
FTP Server
Install Vsftpd
Install ProFTPD
Install Pure-FTPd
FTP Client#1
FTP Client#2
Vsftpd+SSL/TLS
Proftpd+SSL/TLS
Pure-FTPd+SSL/TLS
Sponsored Link
Tweet